Plotly (Date 26.12.2018)

Created a web page presentation using R Markdown that features a plot created with Plotly.

Plotting mtcars data set

suppressPackageStartupMessages({library(plotly)})
library(ggplot2)
library(plotly)
 plot_ly(mtcars,x=~wt, y=~mpg,type = 'scatter',mode="markers" )